All Questions
26 questions
6votes
3answers
469views
First Java Program: A Basic GUI Library Management System with JavaFX
Requirements: Add/Delete member. Add/Delete book. Issue/Return book. Review Request: General coding comments, bad practices, style et cetera. Code: Main.java: <...
3votes
1answer
62views
JavaFx Music Player
I built a small program that searches and plays wav files on your PC. This Java Music Player application is my first comprehensive project. It features a straightforward graphical user interface (GUI) ...
5votes
1answer
102views
ConnectFourFX.java - A Java FX GUI app for playing Connect Four against AI
GitHub The entire project relies here (ConnectFourFX.java) and is dependent on Connect4.java. Code com.github.coderodde.game.connect4.ConnectFourBoard.java: ...
1vote
0answers
63views
WikiGameKillerFX.java - a JavaFX GUI program for solving the Wiki Game instances
I have this GitHub repository. In Wiki Game, players agree on random source and target articles, and attempt to navigate from the source to the target using least number of links. If there is a tie, ...
1vote
0answers
51views
A JavaFX program to find out the mouse refresh rate v3
(This post is the continuation of A JavaFX program to find out the mouse refresh rate v2.) After taking @J_H's suggestions into account, I ended up here: ...
3votes
1answer
69views
A JavaFX program to find out the mouse refresh rate v2
(See the continuation of this post in A JavaFX program to find out the mouse refresh rate v3.) (This post is a continuation of A JavaFX program to find out the mouse refresh rate.) After adopting the ...
2votes
1answer
88views
A JavaFX program to find out the mouse refresh rate
(See the next version here.) Intro I have this tiny JavaFX program that shows a 800x600 pixel canvas. You are supposed to drag the mouse within the canvas. When you are done dragging, the program will ...
3votes
0answers
352views
JavaFX dialog for numeric typed data input
I have this small subclass of JavaFX's javafx.scene.control.Dialog that requires the enum specifying the data type of the input data: ...
2votes
0answers
58views
Designing a phonebook menu bar, filter and sorting order buttons included
I designed a phonebook application using JavaFX (trying to follow Material Design by Google, as you can see in the screenshot). The code below is the code that handles the ...
7votes
1answer
652views
Gem Puzzle game
I started learning JavaFX a few days ago and I have just created as an exercise a simple Gem Puzzle game. The puzzle pieces can be moved if we click on them. The visual aspect of the game is very ...
1vote
1answer
161views
slow JavaFx PostgreSQL CRUD app with complex object
I've created a JavaFX app to the data about Vessels, Employees and Jobs. The current version works but it is quite slow which I need to fix. I understand the root of my problems but I do not know how ...
7votes
1answer
2kviews
Moving Cell objects around a game field
I have a 20x20 field that contains Square objects. Each Square contains a Rectangle that is ...
2votes
1answer
2kviews
Simple JavaFX app pops-up reminders on schedule
My employer gave me a sit-stand desk, but I was forgetting to use it: I just sat almost all day. So for fun and learning I wrote a simple JavaFX reminder app to remind me to alternate between sitting ...
3votes
1answer
101views
Note Management Program
Good night everyone. I spent the last week or so building this pretty cool note management program written with JavaFX. . Buttons are the method used to switch b/w open documents, and the "notes" are ...
5votes
1answer
19kviews
Simple JavaFX Calculator
I made a simple JavaFX calculator. It does basic calculations, and works to the best of my knowledge. However, I'm a novice at both Java and JavaFX, so I seriously doubt this is as efficient and clean ...